home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4d21.zip / EASY_PRJ.DPR < prev    next >
Text File  |  1997-06-03  |  218b  |  15 lines

  1. program Easy_prj;
  2.  
  3. uses
  4.   Forms,
  5.   Easy_pgm in 'EASY_PGM.PAS' {Easy},
  6.   wsc in 'WSC.PAS',
  7.   DisplayUnit in 'DISPLAY.PAS';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TEasy, Easy);
  13.   Application.Run;
  14. end.
  15.